projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0d3573e
)
(rindex): Add declaration.
author
Richard M. Stallman
<rms@gnu.org>
Sat, 5 Jul 1997 03:19:16 +0000
(
03:19
+0000)
committer
Richard M. Stallman
<rms@gnu.org>
Sat, 5 Jul 1997 03:19:16 +0000
(
03:19
+0000)
lib-src/movemail.c
patch
|
blob
|
history
diff --git
a/lib-src/movemail.c
b/lib-src/movemail.c
index 4d82440134957cf74750b816ef541d51a6a7f49f..866f0b08139e2a309982cf5e3c315dd12fc75fc7 100644
(file)
--- a/
lib-src/movemail.c
+++ b/
lib-src/movemail.c
@@
-143,6
+143,7
@@
static char *mail_spool_name ();
extern int errno;
#endif
char *strerror ();
+extern char *rindex ();
void fatal ();
void error ();
@@
-566,8
+567,8
@@
mail_spool_name (inname)
if (status < 0)
return NULL;
- if (
(stat1.st_dev == stat2.st_dev) &&
-
(stat1.st_ino == stat2.st_ino)
)
+ if (
stat1.st_dev == stat2.st_dev
+
&& stat1.st_ino == stat2.st_ino
)
return fname;
return NULL;